/* ================= NAVBAR ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

.container{

    width:92%;
    max-width:1300px;

    margin:auto;

}

/* Navbar */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:80px;

    background:#ffffff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:9999;

}

.nav-container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo img{

    height:55px;

    width:auto;

}

/* Navigation */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

    align-items:center;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#1e293b;

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#00bfff;

    transition:.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,
.nav-links a.active{

    color:#00bfff;

}

/* Button */

.quote-btn{

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    color:#ffffff;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.quote-btn:hover{

    transform:translateY(-3px);

}

/* Mobile Icon */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:26px;

    cursor:pointer;

    color:#1e293b;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .menu-toggle{

        display:block;

    }

    .quote-btn{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#ffffff;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 25px rgba(0,0,0,.12);

        transform:translateY(-120%);

        opacity:0;

        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        transform:translateY(0);

        opacity:1;

        visibility:visible;

    }

}

/* ================= PROJECTS HEADER ================= */

.projects-section{

    padding:120px 0 40px;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f7f5ff
    );

}

.section-title{

    text-align:center;

}

.section-title h2{

    font-size:clamp(2.8rem,5vw,4rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.section-title h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.section-title p{

    max-width:720px;

    margin:auto;

    font-size:18px;

    color:#000000;

    line-height:1.7;

}

/* ================= STICKY FILTER ================= */

.project-filter-section{

    position:sticky;

    top:80px;

    z-index:999;

    background:#ffffff;

    border-top:1px solid #eef2f7;

    border-bottom:1px solid #eef2f7;

    box-shadow:0 6px 18px rgba(0,0,0,.06);

}

.project-filter{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:16px;

    padding:18px 0;

}

/* ================= BUTTONS ================= */

.filter-btn{

    padding:12px 28px;

    border:none;

    border-radius:50px;

    background:#ffffff;

    border:1px solid #dbe5f1;

    color:#000000;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.filter-btn:hover{

    transform:translateY(-3px);

    color:#ffffff;

    border-color:transparent;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:0 10px 25px rgba(0,198,255,.25);

}

.filter-btn.active{

    color:#ffffff;

    border-color:transparent;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:0 10px 25px rgba(0,198,255,.25);

}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .projects-section{

        padding:90px 0 30px;

    }

    .project-filter{

        gap:12px;

        padding:15px 0;

    }

    .filter-btn{

        padding:10px 22px;

        font-size:14px;

    }

}

/* ================= PROJECT GRID ================= */

.projects-grid-section{

    padding:60px 0 100px;

    background:#f8fbff;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    align-items:start;

}

/* ================= PROJECT CARD ================= */

.project-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #e8eef6;

    box-shadow:0 8px 25px rgba(15,23,42,.08);

    transition:all .35s ease;

    display:flex;

    flex-direction:column;

    height:100%;

}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(15,23,42,.15);

}

/* ================= IMAGE ================= */

.project-image{

    position:relative;

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:190px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}

/* ================= CATEGORY ================= */

.project-category{

    position:absolute;

    top:16px;

    right:16px;

    padding:7px 16px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#fff;

    font-size:12px;

    font-weight:500;

}

/* ================= CONTENT ================= */

.project-content{

    padding:18px;

    display:flex;

    flex-direction:column;

    flex:1;

}

/* ================= META ================= */

.project-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:13px;

    color:#000000;

    margin-bottom:12px;

}

.project-meta span{

    display:flex;

    align-items:center;

    gap:6px;

}

.project-meta i{

    color:#00bfff;

}

/* ================= TITLE ================= */

.project-content h3{

    font-size:23px;

    font-weight:600;

    color:#0f172a;

    line-height:1.3;

    margin-bottom:4px;

}

.project-content h5{

    font-size:14px;

    font-weight:500;

    color:#6a11cb;

    margin-bottom:10px;

}

.project-content p{

    font-size:14px;

    color:#000000;

    line-height:1.5;

    margin-bottom:14px;

    min-height:48px;

}

/* ================= INVESTMENT ================= */

.project-investment{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 14px;

    border:1px solid #edf2f7;

    border-radius:12px;

    background:#fcfdff;

    margin-top:auto;

    margin-bottom:10px;

}

.project-investment small{

    display:block;

    margin-bottom:4px;

    font-size:12px;

    font-weight:500;

    color:#94a3b8;

}

.project-investment h4{

    font-size:18px;

    font-weight:600;

    color:#0f172a;

}

.project-investment i{

    color:#22c55e;

    font-size:18px;

}

/* ================= OUTCOME ================= */

.project-outcome{

    padding:10px 14px;

    border:1px solid #edf2f7;

    border-radius:12px;

    background:#ffffff;

    min-height:78px;

}

.project-outcome small{

    display:block;

    margin-bottom:4px;

    font-size:12px;

    font-weight:500;

    color:#94a3b8;

}

.project-outcome p{

    margin:0;

    font-size:14px;

    font-weight:400;

    line-height:1.45;

    color:#000000;

}

/* ================= ANIMATION ================= */

.hide-project{

    opacity:0;

    transform:translateY(40px);

    transition:.6s ease;

}

.show-project{

    opacity:1;

    transform:translateY(0);

}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .projects-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

}

@media(max-width:768px){

    .projects-grid{

        grid-template-columns:1fr;

    }

    .project-image img{

        height:220px;

    }

    .project-content{

        padding:16px;

    }

    .project-content h3{

        font-size:21px;

    }

}

/* ================= PROJECT IMPACT ================= */

.project-impact-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f7f5ff
    );

}

/* Heading */

.project-impact-section .section-title{

    text-align:center;

    margin-bottom:60px;

}

.project-impact-section .section-title h2{

    font-size:clamp(2.8rem,5vw,4rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.project-impact-section .section-title h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.project-impact-section .section-title p{

    font-size:18px;

    color:#000000;

    line-height:1.7;

}

/* ================= GRID ================= */

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

/* ================= CARD ================= */

.impact-card{

    background:#ffffff;

    border:1px solid #e5edf5;

    border-radius:20px;

    padding:42px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

    transition:.35s ease;

}

.impact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

/* Number */

.impact-card h3{

    display:inline;

    font-size:56px;

    font-weight:800;

    line-height:1;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* + / % / Cr */

.impact-card span{

    font-size:44px;

    font-weight:700;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* Text */

.impact-card p{

    margin-top:20px;

    font-size:17px;

    font-weight:500;

    color:#000000;

}

/* ================= ANIMATION ================= */

.impact-card{

    opacity:0;

    transform:translateY(40px);

    transition:all .7s ease;

}

.impact-card.show{

    opacity:1;

    transform:translateY(0);

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .impact-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .project-impact-section{

        padding:80px 0;

    }

    .impact-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .impact-card{

        padding:35px 20px;

    }

    .impact-card h3{

        font-size:48px;

    }

    .impact-card span{

        font-size:36px;

    }

    .impact-card p{

        font-size:16px;

    }

}

/* ================= CTA SECTION ================= */

.cta-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #edf9ff 0%,
        #f5f1ff 100%
    );

}

.cta-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.cta-content h2{

    font-size:clamp(3rem,5vw,4.5rem);

    font-weight:800;

    line-height:1.15;

    color:#0f172a;

    max-width:900px;

    margin:0 auto 25px;

}

.cta-content p{

    max-width:720px;

    margin:0 auto 50px;

    font-size:22px;

    line-height:1.7;

    color:#000000;

}

/* Buttons */

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

.cta-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    min-width:270px;

    padding:18px 36px;

    text-decoration:none;

    border-radius:55px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

/* Primary */

.primary-btn{

    color:#fff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:
    0 15px 35px rgba(80,80,255,.25);

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 45px rgba(80,80,255,.35);

}

.primary-btn i{

    transition:.3s;

}

.primary-btn:hover i{

    transform:translateX(6px);

}

/* Secondary */

.secondary-btn{

    background:#ffffff;

    color:#0f172a;

    border:1px solid #d9e3ef;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);

}

.secondary-btn:hover{

    background:#0f172a;

    color:#ffffff;

    border-color:#0f172a;

    transform:translateY(-5px);

}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .cta-section{

        padding:80px 0;

    }

    .cta-content p{

        font-size:18px;

    }

    .cta-buttons{

        flex-direction:column;

        gap:18px;

    }

    .cta-btn{

        width:100%;

        max-width:330px;

    }

}

/* ================= FOOTER ================= */

.footer{

    background:#1e293b;

    color:#cbd5e1;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr repeat(3,1fr);

    gap:50px;

}

.footer-column h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:28px;

    font-weight:700;

}

/* Logo */

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    width:100%;

    max-width:190px;

    height:auto;

}

/* About */

.footer-about p{

    line-height:1.9;

    margin-bottom:35px;

    color:#94a3b8;

    font-size:17px;

}

/* Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-item i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    flex-shrink:0;

}

.contact-item a,
.contact-item span{

    color:#cbd5e1;

    text-decoration:none;

    line-height:1.8;

    transition:.3s;

}

.contact-item a:hover{

    color:#00d4ff;

}

/* Links */

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:18px;

}

.footer-column ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer-column ul li a:hover{

    color:#00d4ff;

    padding-left:8px;

}

/* Social */

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,198,255,.35);

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94a3b8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#00d4ff;

}

/* Responsive */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-column h3{

        font-size:24px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

}

@media(max-width:768px){

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-btn{

        width:100%;

        max-width:350px;

    }

    .contact-box p{

        font-size:24px;

    }

}